home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / winfo151 / winfo151.exe / FRMABOUT.PAS < prev    next >
Pascal/Delphi Source File  |  1995-09-06  |  817b  |  44 lines

  1. unit Frmabout;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, StdCtrls, Buttons;
  8.  
  9. type
  10.   TfrmNmfiAbout = class(TForm)
  11.     Panel2: TPanel;
  12.     AppName: TLabel;
  13.     Copyright: TLabel;
  14.     EMail: TLabel;
  15.     Bevel1: TBevel;
  16.     BitBtn1: TBitBtn;
  17.     Label3: TLabel;
  18.     Bevel2: TBevel;
  19.     Label2: TLabel;
  20.     Label1: TLabel;
  21.     AppIcon: TImage;
  22.     Image1: TImage;
  23.     procedure FormCreate(Sender: TObject);
  24.   private
  25.     { Private declarations }
  26.   public
  27.     { Public declarations }
  28.   end;
  29.  
  30. var
  31.   frmNmfiAbout: TfrmNmfiAbout;
  32.  
  33. implementation
  34.  
  35. {$R *.DFM}
  36.  
  37. procedure TfrmNmfiAbout.FormCreate(Sender: TObject);
  38. begin
  39. AppName.Caption := Application.Title;
  40. AppIcon.Picture.Icon := Application.Icon;
  41. end;
  42.  
  43. end.
  44.